<table>
表組みを表現するためのHTML要素
基本的な表
code:html
<table>
<caption>caption</caption>
<thead>
<tr>
<th>header</th>
<th>content</th>
</tr>
</thead>
<tbody>
<tr>
<th>header</th>
<td>content</td>
</tr>
</tbody>
<tfoot>
<tr>
<th>header</th>
<th>content</th>
</tr>
</tfoot>
</table>
<tr>が行を表す
<th>が行内の見出し要素
<td>が列ごとの内容
<caption>、<thead>、<tfoot>はなくてもいい
<thead>と<tfoot>がないときは、<tbody>を抜かして<tr>を直接書いちゃってもいいらしい
#2020-12-23